Skip to main content

All Questions

3votes
2answers
384views

Check whether array is sorted recursively

I'm trying to implement isSorted method checking whether given array is sorted recursively. I've written two types, one is similar to merge sort logic, the another ...
Soner from The Ottoman Empire's user avatar
3votes
1answer
3kviews

A recursive sort and filter for a nested object

I have a nested object which I need to filter and sort. I have a nested Object where some keys like app1 are nested inside another object. I need to be able to filter out objects with the status of ...
Rick's user avatar
  • 586
1vote
1answer
1kviews

Is this the best way to check sorting (in recursion) without loops?

Please let me know if there is a shorter way to do it again without any kind of loops. Recursion only. ...
BananaBuisness's user avatar
5votes
3answers
2kviews

Merge Sort Implementation in Java (that seems slow...)

I decided to write my own implementation of merge sort. Here is the code: ...
TheCoffeeCup's user avatar

close